/**
 * Gallerify.js default styles
 * @author Calvin Juárez
 */
.gallerify {
  position: relative;
  max-width: 100%;
  overflow: auto;
}
.gallerify-inner {
  position: relative;
  display: table;
  height: auto;
  width: auto;
  margin: 0;
  white-space: nowrap;
  list-style-type: none;
  -webkit-transition: left linear .2s;
  transition: left linear .2s;
}
.gallerify-item {
  display: table-cell;
  border-spacing: 10px;
  box-sizing: border-box;
  padding: 5px;
}
.gallerify-item img {
  height: 100px;
  width: auto;
  max-width: none;
  max-height: none;
}
.gallerify a[data-item] {
  display: block;
}
.gallerify-thumbs-left,
.gallerify-thumbs-right {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  width: 50px;
  background-color: #000000;
  text-align: center;
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-transition: opacity linear .2s;
  transition: opacity linear .2s;
}
.gallerify-thumbs-left > i,
.gallerify-thumbs-right > i {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  font-style: normal;
  font-size: 40px;
  line-height: .8;
  vertical-align: middle;
}
.gallerify-thumbs-left:hover,
.gallerify-thumbs-right:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.gallerify-thumbs-left {
  left: 0;
}
.gallerify-thumbs-right {
  right: 0;
}
.gallerify-overlay {
  position: fixed;
  top: 0;
  z-index: 9000;
  display: none;
  height: 100%;
  width: 100%;
  color: #dddddd;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}
.gallerify-container {
  position: relative;
  top: 13%;
  width: 85%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.gallerify-wrapper {
  position: relative;
  display: inline-block;
  background-color: #000000;
  text-align: left;
  *zoom: 1;
  *display: inline;
}
.gallerify-feature {
  text-align: center;
}
.gallerify-caption {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  font-size: 0.8em;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.7);
}
.gallerify-caption p {
  margin: 8px 8px 2px;
}
.gallerify-dismiss {
  position: absolute;
  top: -9px;
  right: -9px;
  z-index: 100;
  padding: 7px 4px 11px;
  padding: 6px 2px 11px 3px;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  line-height: 0;
  background-color: #000000;
  border-width: 2px;
  border-style: solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: background-color linear .2s;
  transition: background-color linear .2s;
}
.gallerify-dismiss:hover {
  background-color: #666666;
}
.gallerify-back,
.gallerify-next {
  position: absolute;
  z-index: 99;
  top: 0;
  bottom: 0;
  width: 50%;
}
.gallerify-back > i,
.gallerify-next > i {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  padding: 7px 4px 11px;
  padding: 6px 5px 11px 6px;
  color: #ffffff;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  line-height: 0;
  background-color: #000000;
  border-width: 2px;
  border-style: solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: background-color linear .2s;
  transition: background-color linear .2s;
}
.gallerify-back:hover > i,
.gallerify-next:hover > i {
  background-color: #666666;
}
.gallerify-back {
  left: 0;
}
.gallerify-back > i {
  left: 10px;
}
.gallerify-next {
  right: 0;
}
.gallerify-next > i {
  right: 10px;
}
@media only screen and (min-width: 641px) {
  .gallerify-container {
    top: 13%;
  }
  .gallerify-caption {
    font-size: 1em;
    top: auto;
    bottom: 0;
  }
  .gallerify-back,
  .gallerify-next {
    width: 33%;
  }
}
.pep.gallerify {
  display: block;
  overflow: hidden;
}
.pep.gallerify-inner {
  display: block;
  cursor: move;
}
.pep.gallerify-item {
  float: left;
  display: block;
  cursor: hand;
}
