.catalog-assets-gallery .items {
  display: grid;
  grid-gap: 1rem;
  margin-bottom: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 450px) {
  .catalog-assets-gallery .items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .catalog-assets-gallery .items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.catalog-assets-gallery .items .item .item-container {
  position: relative;
  height: auto;
}
.catalog-assets-gallery .items .item .item-container .title {
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0;
}
.catalog-assets-gallery .items .item .item-container.without-thumbnail {
  height: 250px;
  background-color: #f7eedd;
  padding: 10px;
}
.catalog-assets-gallery .items .item .item-container .catalog-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.catalog-assets-gallery .items .item .item-container .catalog-item-overlay .bi-box-arrow-up-right {
  display: none;
}
.catalog-assets-gallery .items .item .item-container .catalog-item-overlay i {
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
}

@media (min-width: 768px) {
  .catalog-assets-gallery .items .item .item-container:hover .catalog-item-overlay {
    display: block;
  }
}

.catalog-assets-gallery .items .item .item-container .catalog-item-overlay .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.catalog-assets-gallery .items .item .item-container .catalog-item-overlay .download {
  position: absolute;
  bottom: 0;
  right: 5px;
}
.naracatalog--icon-pdf {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-image: url(../img/file-earmark-pdf.svg);
  background-size: 42px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  filter: brightness(0) invert(1);
}
.naracatalog--zoom-in {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-image: url(../img/zoom-in.svg);
  background-size: 42px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  filter: brightness(0) invert(1);
}
.naracatalog--cloud-download {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-image: url(../img/cloud-download.svg);
  background-size: 42px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  filter: brightness(0) invert(1);
}
.naracatalog--file-earmark-text {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/file-earmark-text.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.naracatalog--files-alt {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/files-alt.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.naracatalog--link-45deg {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/link-45deg.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
