#lightgallery .item {
  margin-bottom: 30px; }
  #lightgallery .item [class*="icon-"] {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    color: #fff;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    margin-top: 50px;
    z-index: 9; }
  #lightgallery .item img {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    border-radius: 5px;
    opacity: 1; }
  #lightgallery .item:hover [class*="icon-"] {
    opacity: 1;
    visibility: visible;
    margin-top: 0px; }
  #lightgallery .item:hover img {
    opacity: .5; }
