#cameraLoaderContainer {
  position: absolute;
  top: 53%;
  left: 63%;
  transform: translate(-53%, -63%);
  display: none;
  z-index: 1000;
  text-align: center;
  max-width: 800px;
  
}

#cameraLoaderContainer .camera-photos {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: start;
}

#cameraLoaderContainer figure {
  margin: 0;
}

#cameraLoaderContainer figcaption {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}

#cameraLoaderContainer img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* fortare marime poze */
#cameraLoaderContainer .camera-photos img {
  width: 1300px;
  height: 300px;
  object-fit: cover;
}

/* imagini ascunse la start */
#cameraLoaderContainer .camera-photos figure {
  opacity: 0;
}

/* slide-in animation */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* animatie de slide */
#cameraLoaderContainer .camera-photos figure.slide-in {
  animation: slideIn 0.6s ease forwards;
}

/* mesaj peste gift */
#cameraLoaderContainer .loading-message {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: inherit;    /* potrivire culoare text */
  text-align: center;
}
