/* CSS Document */

ul.gallery {
  margin: 0;
  padding: 0;
}

.gallery li {
  float: left;
  width: 50%;
  padding: 10px;
  list-style: none;
}

.gallery a,
.gallery a img {
    max-width: 100%;
    max-height: 100%;
    /* display: block; /* remove extra space below image */
  }

.gallery a {
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
}

.gallery a:hover {
  cursor: pointer;
}

.gallery .gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background-color 0.15s ease 0s;
}

.gallery .gallery-poster img.play {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: opacity 0.3s ease 0s;
}

.gallery .gallery-poster img.zoom {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: opacity 0.3s ease 0s;
}






.gallery a > img {
  transition: transform 0.15s ease 0s;
  transform: scale3d(1, 1, 1);
  width: 100%;
}
.gallery a:hover > img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.gallery a:hover .gallery-poster > img {
  opacity: 1;
}
.gallery a .gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background-color 0.15s ease 0s;
}
.gallery a .gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: opacity 0.3s ease 0s;
}
.gallery a:hover .gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}
.gallery > a > img {
  transition: transform 0.15s ease 0s;
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}
.gallery > a:hover > img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.gallery > a:hover .gallery-poster > img {
  opacity: 1;
}
.gallery > a .gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background-color 0.15s ease 0s;
}
.gallery > a .gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: opacity 0.3s ease 0s;
}
.gallery > a:hover .gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery .caption {
	bottom: 0.6em;
    display: inline-flex;
    position: inherit;
    background-color: rgb(0,0,0,0.6);
    width: 100%;
    padding-left: 1em;
}

.gallery .caption .titulo {
	font-size: 1em;
	color: #F5F5F5;
	font-weight: 500;
	line-height: 1.2em;
}

.gallery .caption .banda {
	font-size: 0.9em;
	color: #CDCDCD;
}

@media all and (max-width: 720px) {
  .gallery li {
    width: 100%;
  }
}
