// Youtube embed auto play button
.video-player {
  .video-thumb {
    position: relative;
    color: white;
    &:before {
      content: '';
      display: block;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(black, .3);
    }
    &:after {
      position: absolute;
      @include centre(xy);
      content: "\f144";
      font-family: 'FontAwesome';
      font-size: calc-em(48px);
      color: white;
    }
    img {
      margin: 0;
    }
  }
  a {
    display: block;
    margin-top: $gutter;
  }
  .video {
    width: 100%;
    height: 197px;
  }
}