.openAside {
  .page {
    opacity:.1;
  }
  aside#aside-video {
    right:0;
  }
}

aside#aside-video {
  width:100%;
  right:-100%;
  position:fixed;
  overflow: auto;
  height:100%;
  top:0;
  background:@white;
  padding:0 10px;
  border-left:1px solid;
  transition:right 450ms ease-in-out;

  #content.texte {
    padding-top:3em;
  }
  h1 small {
    font-size: .6em;
  }

  .nav-toggle-btn {
    left: 1em;
    font-size: .8em;
    small.close {
      display: block;
    }
    hr {
      left:0;
      &:first-child {
        transform:rotate(-45deg) translateX(0);
        top:50%;
        margin-top:-1px;
      }
      &:nth-child(3) {
        top:-50%;
        transform:rotate(45deg) translateX(0);
        margin-top:1px;
      }
      &:nth-child(2) {
        opacity: 0;
      }
    }
  }
}

.filtres {
  text-align: right;
  li {
    display: inline-block;
    border:1px solid;
    padding:.25em .5em;
    margin-right:.25em;
    margin-bottom:.25em;
    cursor: pointer;
    &.active,
    &:hover {
      background-color:@black;
      color:@white;
    }
  }
}

.liste-films {
  padding-bottom:1em;
  
  .buttons {
    display: flex;
    justify-content: space-between;
  }
  ul.liste {
    margin-top:1em;
    display: flex;
    flex-flow: row wrap;
    border-top:1px solid;
    h2 {
      margin-top: 0;
      a.cta {
        margin-top: .5em;
        display: inline-block;
      }
    }
    > li {
      border-left:1px solid transparent;
      border-right:1px solid transparent;
      border-bottom:1px solid;
      padding: 1em;
      width: 100%;
    }
    > li {
      display:inline-block;
      span.groupe-mots-titre {
        display: inline;
        & + ul {
          display: inline;
        }
      }
      &.ready {
        p, img, h3 {
          cursor: pointer;
        }
        &:hover {
          background-color: white;
          img {
            // filter: grayscale(0%);
          }
        }
      }
      > ul {
        display: flex;
        flex-flow: row wrap;
        > li {
          width:50%;
          padding:0 .25em;
          h3 {
            // H3 des séries
            margin-bottom:.25em;
          }
        }
      }
      h3 {
        margin-top:0;
      }
      img {
        width:100%;
        height:auto;
        margin:0;
        padding:0;
        // filter: grayscale(100%);
      }
      iframe {
        min-height: 260px;
      }
    }
  }
  .buttons > ul{
    text-align: center;
    padding:0;
    margin-bottom:.5em;
    li {
      font-size: 1.2em;
      padding:0 .5em;
      margin:0;
      display: inline-block;
      &.disposition-toggler, 
      &.groupe-filtres {
        cursor: pointer;
        text-decoration: line-through;
      }
      &.active {
        font-weight: bold;
        text-decoration: none;
      }
    }
  }
}
.groupe-mot {
  padding-top:1em;
}
.titre-groupe-mot {
  padding-right:1em;
}
.tags {
  padding-bottom: .25em;
  li {
    display: inline-block;
    line-height: 2.25;
  }
}