.animelist {
    background-color: #e2e2e2;
    position: relative;
    padding: 0;
    margin: 0;
}

.animelist > .bg {
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: #333;
}

.animelist > .filters {
    display: block;
    position: relative;
    color: #000;
    width: 100%;
}

.animelist .anime {
    cursor: pointer;
    display: inline-block;
    margin: 25px;
    margin-bottom: 0;
    width: 200px;
    height: 250px;
    border: 1px black solid;
    text-align: center;
    position: relative;
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transition: opacity .5s linear, filter .5s linear;
    -webkit-transition: opacity .5s linear, -webkit-filter .5s linear;
    transition: opacity .5s linear, -webkit-filter .5s linear;
    transition: opacity .5s linear, filter .5s linear;
    transition: opacity .5s linear, filter .5s linear, -webkit-filter .5s linear;
}
.animelist .anime.unselected {
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
    opacity: 0.5;
}

.animelist .anime > h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    background: rgba(34, 34, 34, 0.8);
    margin: 0;
}

.animelist .mangaInfos {
    border: none;
    margin: 0;
    width: 100%;
    background: #E2E2E2;
    position: relative;
    display: block;
    word-break: break-all;
}

.animate-hide {
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
  opacity: 1;
  padding: 10px;
  border: 1px solid black;
  background: white;
}

.animate-hide.ng-hide {
  opacity: 0;
  padding: 0 10px;
}
