/* Paperclip slideshow styling */
.paperclip-slideshow {
  width: 200px;
  text-align: relative;
  position: relative;
  top: 0px;
  left: 10px;
  margin-left: auto;
  margin-right: 50px;
  z-index: 100;
}

/* Images stack */
.paperclip-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  height: auto;
  border: 1px solid #7a6a47;
  border-radius: 2px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
  background: #fff;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 150;
}

.paperclip-slideshow img.hidden {
  opacity: 0;
}

.paperclip-slideshow img.top {
  z-index: 200;
}

.paperclip-slideshow img.to-back {
  opacity: 0;
  z-index: 101;
  transition: opacity 0.6s ease, z-index 0s linear 0.6s;
}

.paperclip-slideshow img.examining {
  display: none !important;
}

.paperclip-slideshow.collapsed {
  height: 0;
  overflow: visible;
}

.paperclip-slideshow.collapsed .photo-stack #media-container img {
  opacity: 0;
  transform: translateY(10px) rotate(2deg);
  pointer-events: none;
}

/* back half of the paperclip */
.paperclip-back {
  position: absolute;
  top: -44px;
  left: 40%;
  width: 45px;
  height: 98px;
  background: url('/wp-content/themes/yoricktours/assets/images/paperclip-right-back.png') no-repeat center/contain;
  transform: translateX(-50%);
  z-index: 1;
}

/* front half of the paperclip */
.paperclip-front {
  position: absolute;
  top: -44px;
  left: 40%;
  width: 45px;
  height: 98px;
  background: url('/wp-content/themes/yoricktours/assets/images/paperclip-right-front.png') no-repeat center/contain;
  transform: translateX(-50%);
  z-index: 999;
  cursor: pointer;
}

@media (max-width: 500px) {
  .paperclip-slideshow {
    top: -40px;
  }
}

@media (max-width: 1024px) {
  .paperclip-slideshow {
    top: -40px;
  }
}