.section.section__albumsFilters{
    display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      max-width: 1000px;
      width: -webkit-fill-available;
  }
  
  .section__albumsFilters-container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 20px;
}

  .albumsFilters{
    display: flex;
    flex-wrap: wrap;
    min-height: 300px;
    flex-direction: row;
    gap: 5px;
    margin: 1em 0.5em!important;
   width: -webkit-fill-available;
   justify-content: space-evenly;
  }
  .albumsFilters__other{
    margin: 1em 0.5em!important;
  }


  .albumsFilters__column {
    cursor: pointer;
    display: none; 
  }
  
  .albumsFilters__column.albumsFilters__show {
    display: flex;
    /*margin: auto;*/
    flex-direction: column;
    flex-wrap: nowrap;
    transition: .25s;
      }
  
  .albumsFilters__content {
    margin: 0;
    box-shadow: 0 1px 3px 0 var(--separator);
    transition: all .5s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    text-decoration: none;
    min-height: 300px;
	  height: -webkit-fill-available;
    position: relative;
  }

  .albumsFilters__content:hover{
    box-shadow: 0 2px 6px 0 var(--separator);
    transition: all .5s;
    background-position: initial;
  }
  

  .albumsFilters__img{
    max-width: 300px;
    width: -webkit-fill-available;
    visibility: hidden;
    min-height: 250px;
  }

  @media screen and (max-width: 500px) {
    .albumsFilters__column.albumsFilters__show{
      width: 100%;
    }
  }

  @media screen and (min-width: 500px) and (max-width: 799px) {
    .albumsFilters__column.albumsFilters__show{
      width: 49%;
    }
  }

  @media screen and (min-width: 800px) {
    .albumsFilters__column.albumsFilters__show{
      width: 32%;
    }
  }


  .albumsFilters__content-footer{
    padding: 5px 10px;
    background: var(--albums-bg);
    position: absolute;
    bottom: 0;
    width: -webkit-fill-available;
  }
  
  .albumsFilters__content-title{
    color: var(--GreenYellow);
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .albumsFilters__content-desc{
    font-size: initial;
    font-weight: 300;
    color: var(--light);
    height: 1.5rem;
    overflow: hidden;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
  }

  .albumsFilters__content-date{
    font-size: small;
    font-weight: 400;
    color: var(--Mustard);
  }
  
  .albumsFilters__btn {
    border: none;
      outline: none;
      padding: 12px 16px;
      background-color: transparent;
      cursor: pointer;
      font-size: initial;
      color: var(--default);
      font-weight: 400;
  }
  
  .albumsFilters__btn:hover {
    background-color: #ddd;
  }
  
  .albumsFilters__btn.active {
    background-color: var(--main);
    color: var(--light);
  }

  .section__albumsFilters > p > a.section__button-link{
    margin: auto;
    background: transparent;
    color: var(--default);
    font-size: large;
    font-weight: 400;
    padding: 0;
  }

  .section__albumsFilters > p > a.section__button-link:hover{
    color: var(--Mustard);
    background: transparent;
    box-shadow: 0 0px 0px 0 transparent;
  }