.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.loader-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.loader-spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.image-gallery-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.image-gallery-container .image-gallery-description {
  font-size: 12px;
}
.image-gallery-container .image-gallery-anchor {
  display: block;
  position: relative;
}
.image-gallery-container .image-gallery-anchor .image-gallery-preview {
  top: 0;
  border-radius: 10px;
}
.image-gallery-container .image-gallery-anchor .image-gallery-thumbnail {
  display: flex;
  border-radius: 10px;
  width: 100%;
  min-width: 140px;
  height: 100px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
}
.image-gallery-container .image-gallery-anchor .image-gallery-thumbnail-icon svg {
  width: 24px;
  height: 24px;
}
.image-gallery-container .image-gallery-anchor .image-gallery-load-button {
  width: 25px;
  height: 25px;
  min-height: 25px;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
}
.image-gallery-container .video-container {
  display: block;
  position: relative;
}
.image-gallery-container .video-container .image-gallery-load-button {
  width: 25px;
  height: 25px;
  min-height: 25px;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
}

/*# sourceMappingURL=main~10.e8604778.css.map*/