.gallery-albums {
  list-style:none;
  margin:0;
  padding:0;
  margin-top:15px;
  margin-bottom:50px;
  margin-bottom:20px;
}

.gallery-albums li {
  display:inline-block;
  border-right:solid 1px #eee;
}

.gallery-albums li:last-child, .gallery-albums li.active {
  border-right:none;
}

.gallery-albums li a {
  padding:4px 10px 4px 10px;
  display:block;
  min-width:100px;
  text-align:center;
}

.gallery-albums li.active a {
  background-color:#EE5A22;
  color:white;
}

.gallery-item {
  position:relative;
  width:100%;
  background-color:#ddd;
  cursor:pointer;
  margin-bottom:20px;
}

.gallery-item:before {
  content:'';
  display:block;
  padding-top:100%;
}

.gallery-item img {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  height:100%;
  width:100%;
  object-fit:cover;
}

.gallery-item .overlay {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:rgba(0,0,0,.5);
  opacity:.5;
  transition:opacity 150ms ease-in-out;
}

.gallery-item .share-link {
  position:absolute;
  bottom:0;
  right:0;
  text-align:center;
  height:32px;
  width:32px;
  border-radius:50%;
  line-height:32px;
  margin-right:10px;
  margin-bottom:10px;
  color:white;
  visibility:hidden;
  transition:transform 80ms ease-in-out;
}

.gallery-item .share-link:hover {
  box-shadow:1px 1px 4px rgba(0,0,0,.8);
  transform:scale(1.1);
}

.gallery-item .center-icon {
  width:50px;
  height:50px;
  line-height:50px;
  text-align:center;
  background-color:transparent;
  color:white;
  font-size:22px;
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-25px;
  margin-top:-25px;
  visibility:hidden;
}

.gallery-item:hover .overlay {
  opacity:1;
}

.gallery-item:hover .center-icon, .gallery-item:hover .share-link {
  visibility:visible;
}

