.gallery-container {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #00c;
  -ms-touch-action: none;
      touch-action: none;
  overflow: hidden;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: -webkit-grab;
  cursor: grab;
}

html {
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: 'Fixture', sans-serif;
  background: #000;
}

div.dot {
  position: fixed;
  background: #000;
}

div.tiles {
  position: absolute;
  z-index: 5;
}

div.tiles div {
  display: block;
  float: left;
  background-size: cover;
  background-position: center;
}

div.gif-focus {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 204, 0.8);
  z-index: 20;
  opacity: 0;
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
  -webkit-transition: opacity ease-in-out .3s;
  transition: opacity ease-in-out .3s;
}

div.gif-focus.open {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}

div.gif-focus div.gif {
  width: 90%;
  height: 75%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 5%;
  left: 5%;
  overflow: hidden;
  z-index: 20;
}

div.gif-focus div.gif video {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  position: relative;
}

div.gif-focus div.credit {
  width: 80%;
  height: 7%;
  position: absolute;
  top: 80%;
  left: 10%;
  text-align: center;
  color: #fff;
  font-size: 34px;
  z-index: 40;
}

div.gif-focus div.credit .name {
  font-weight: 300;
  display: inline-block;
}

div.gif-focus div.credit .handle {
  font-weight: 600;
  display: inline-block;
}

div.gif-focus div.credit .vote {
  margin-top: 20px;
}

div.gif-focus div.credit .vote a {
  padding: 3px 25px 3px 25px;
  border-radius: 30px;
  border: 3px solid #fff;
  background: transparent;
  display: inline-block;
  text-decoration: none;
}

div.gif-focus div.credit .vote a svg {
  width: 30px;
}

div.gif-focus div.credit .vote a svg path {
  fill: #fff;
}

div.gif-focus div.credit .vote a span {
  color: #fff;
  font-size: 20px;
  position: relative;
  top: -7px;
}

div.gif-focus div.credit .vote a.liked {
  background: #fff;
}

div.gif-focus div.credit .vote a.liked svg path {
  fill: #f00;
}

div.gif-focus div.credit .vote a.liked span {
  color: #f00;
}

div.gif-focus div.close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 5%;
  top: 5%;
  z-index: 30;
}

div.gif-focus div.close a {
  display: block;
  width: 100%;
  height: 100%;
}

div.gif-focus div.close img {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */