.peeko-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 12px;
}

#peeko-album-detail {
  position: relative;
  background: #f1eded;
}
.peeko-album {
  box-shadow: 1px 1px 6px #ccc;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}
.peeko-image-item {
  text-align: center;
  position: relative;
}
.peeko-album img {
  width: 100%;
  border-radius: 5px;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
  object-fit: cover;
}

.peeko-cover-image {
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}
.peeko-cover-image:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.peeko-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 8px;
  margin: 30px auto;
  max-width: 1300px;
}
.peeko-image-item .thumbx {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}

.peeko-download-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  text-align: right;
  padding: 20px;
}
/* .peeko-download-btn svg{
    width:20px;
    height:20px
} */
.peeko-image-item:hover > .peeko-download-btn {
  display: inline-block;
}
#peeko-load-more,#load-more-photos,#load-more-animations {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #eec04a;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}
#peeko-load-more,#load-more-photos,#load-more-animations {
  background: #3ebdbb;
}
#peeko-lightbox button {
  background: none;
  border: none;
  cursor: pointer;
}
#peeko-lightbox button:hover {
  color: #ccc;
}
@media (max-width: 767px) {
  .peeko-gallery,
  .peeko-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .peeko-images-grid{
    padding:0 10px
  }
  .peeko-cover-image {
 
  height: 50vh;
}
}
