/* SCSS Document */
body {
  max-width: 100%;
  overflow-x: hidden;
}

.pictureTextBox {
  position: absolute;
  visibility: hidden;
}

.pictureText {
  color: #2B2B2B;
  line-height: 1.2em;
  background-color: #F7F7F7;
  position: absolute;
  width: 20em;
  height: 20em;
  padding: 6em;
  top: 50%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  border-radius: 3px;
}

.gThumb {
  position: relative;
  z-index: 3;
}

.pictureTextBoxMobile {
  padding-top: 0.4em;
  font-size: 0.6em;
  text-align: left;
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
  visibility: visible;
  height: auto;
}

@media screen and (hover: hover) {
  .pictureTextBoxMobile {
    position: relative;
    visibility: hidden;
    height: 0;
  }
  .gThumb {
    border-radius: 3px;
  }
  .pictureTextBox {
    font-size: 0.7em;
    visibility: visible;
    position: absolute;
    bottom: 0%;
    left: 0%;
    opacity: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-transition: .5s ease-out;
    transition: .5s ease-out;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    z-index: 4;
  }
}

/*	.pictureBox:hover .pictureFrame {
		width: 100%;
		height: 100%;
		opacity: 1;
	}*/
#contentHolder {
  opacity: 0;
  -webkit-transition-duration: 0.67s;
          transition-duration: 0.67s;
}
/*# sourceMappingURL=indexStyles.css.map */