.splide__arrows.custom-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.splide__arrows.custom-arrows .splide__arrow {
	background: none;
	color: white;
	opacity: 100%;
	border: none;
	cursor: pointer;
	pointer-events: auto;
	font-size: 3rem;
	width: 1rem;
}

#thumbnail-slider .splide__arrows.custom-arrows {
  top: 50%;
  transform: translateY(-50%);
}


/* Main slider */
#main-slider .splide__slide img,
#main-slider .splide__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnails */
#thumbnail-slider {
  margin-top: 10px;
}
#thumbnail-slider .splide__slide img {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}
#thumbnail-slider .splide__slide.is-active img {
  border: 2px solid #ffffff !important;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
	border: 3px solid #FFFFFF !important;
}

/* Popup */
#stock-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#stock-popup-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
#stock-popup-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#stock-popup-close {
  position: absolute;
  top: -40px;
  right: -40px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
.hidden {
  display: none;
}

.splide__slide::before {
	content: none !important;
}