/* === START of IMAGE WRAPPER === */
  .module_lightbox_gallery ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	}
  .module_lightbox_gallery ul li {
	float: left !important;
	padding: 7px;
	}
  .img-wrapper {
    /* display: inline-block; */
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
  }
  .img-wrapper img {
    height: 100%;
    width: 100%;
    display: block;
    -webkit-transition: all .7s linear;
    -moz-transition: all .7s linear;
    -o-transition: all .7s linear;
    transition: all .7s linear;
    overflow: hidden;
  }
  .img-wrapper a img { padding: 0; }
  .img-wrapper a span {
    width: 100%;
    text-align: center;
    display: block;
    bottom: 0;
    position: absolute;
    padding: 5px;
    background: rgba(136,22,24, .75);
  }
  .img-wrapper a, .img-wrapper:hover a {
    color: #fff !important;
    display: block;
  }
  .img-wrapper:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    overflow: hidden;
    opacity: 1;
  }
/* === END of IMAGE WRAPPER === */

/* === START of SHADOW EFFECT FOR IMAGES === */
  .effect {
    position: relative;
    z-index: 1;
    margin: 0 0 1rem 1rem;
    float: right;
  }
  .effect:before, .effect:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 40%;
    top: 80%;
    max-width: 121px;
  }
  .effect:after {
    transform: rotate(4deg);
    right: 10px;
    left: auto;
  }
/* === END of SHADOW EFFECT FOR IMAGES === */