
.image-fetcher-container {
  
}
.image-fetcher-container .image-fetcher-list {
  -webkit-column-count: 1;
  -moz-column-count:1;
  column-count: 1;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
  padding: 0!important;
  margin: 0;
  list-style: none;
  margin: 0 20px;
}

.image-fetcher-container .image-fetcher-list .image-fetcher-item {
  padding: 8px;
  position: relative;
  display: inline-block;
  
}

.image-fetcher-container .image-fetcher-list .image-fetcher-item:hover {

}

.image-fetcher-container .image-fetcher-list .image-fetcher-item button {
  position: absolute;
  right: 23px;
  bottom: 23px;
  z-index: 10;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url('../assets/Download_icon.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: 50%;
  cursor: pointer;
  border: 0;
  z-index: 1;
  outline: none;
}

@media only screen and (min-width: 590px) {
  .image-fetcher-container .image-fetcher-list {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    margin: 0;
  }
}

@media only screen and (min-width: 992px) {
  .image-fetcher-container .image-fetcher-list {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}