@charset "UTF-8";
@keyframes sliderSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes sliderGlowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(var(--cn-green-rgb), 0.3), inset 0 0 15px rgba(var(--cn-green-rgb), 0.05);
  }
  50% {
    box-shadow: 0 0 20px rgba(var(--cn-green-rgb), 0.5), inset 0 0 20px rgba(var(--cn-green-rgb), 0.1);
  }
}
@keyframes thumbnailGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(var(--cn-green-rgb), 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(var(--cn-green-rgb), 0.4);
  }
}
.atkp-container {
  position: relative;
  width: 100%;
  margin: var(--spacing-md) 0;
  padding: 0;
  background: transparent;
  border: none;
}
@media (min-width: 768px) {
  .atkp-container {
    margin: var(--spacing-lg) 0;
  }
}

.lSSlideOuter {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  border: none;
}

.lSSlideWrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.atkp-imageslider {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: rgba(var(--antra-rgb), 0.8);
  border: none;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.atkp-imageslider li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(var(--antra-rgb), 0.9);
}
.atkp-imageslider li img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(var(--cn-green-rgb), 0.2));
}
.atkp-imageslider li:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 15px rgba(var(--cn-green-rgb), 0.4));
}

.lSAction {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm);
  pointer-events: none;
  z-index: 10;
  transform: translateY(-50%);
}

.lSSlideWrapper .lSAction > a {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--cn-blue-rgb), 0.25);
  border: none;
  color: var(--cn-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  pointer-events: auto;
  background-image: none !important;
  margin-top: 0 !important;
  opacity: 1 !important;
}
.lSSlideWrapper .lSAction > a::before {
  content: "‹";
  font-size: 43px;
  font-weight: bold;
  line-height: 1;
}
.lSSlideWrapper .lSAction > a:hover {
  background: rgba(var(--cn-blue-rgb), 0.4);
}
.lSSlideWrapper .lSAction > a:focus {
  outline: 2px solid var(--cn-blue);
  outline-offset: 2px;
}

.lSSlideWrapper .lSAction > .lSNext::before {
  content: "›";
}

.lSPager {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
  padding: 0;
  background: transparent;
  border-radius: 0;
  flex-wrap: wrap;
}
.lSPager li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.lSPager li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px !important;
  height: 10px !important;
  background: rgba(var(--cn-green-rgb), 0.3) !important;
  border: none !important;
  color: transparent !important;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 !important;
  font-size: 0 !important;
  text-indent: -999em;
  overflow: hidden !important;
}
.lSPager li a:hover {
  background: rgba(var(--cn-green-rgb), 0.5) !important;
  box-shadow: 0 0 6px rgba(var(--cn-green-rgb), 0.3) !important;
}
.lSPager li a:focus {
  outline: 1px solid var(--cn-green);
  outline-offset: 1px;
}
.lSPager li.active a {
  background: var(--cn-blue) !important;
  box-shadow: 0 0 10px rgba(var(--cn-blue-rgb), 0.6) !important;
  animation: thumbnailGlow 3s ease-in-out infinite;
}

.lSSlideOuter .lSPager.lSpg > li a {
  width: 10px !important;
  height: 10px !important;
  background: rgba(var(--cn-green-rgb), 0.3) !important;
  border-radius: 0 !important;
  border: none !important;
}

.lSSlideOuter .lSPager.lSpg > li:hover a {
  background: rgba(var(--cn-green-rgb), 0.5) !important;
  box-shadow: 0 0 6px rgba(var(--cn-green-rgb), 0.3) !important;
}

.lSSlideOuter .lSPager.lSpg > li.active a {
  background: var(--cn-blue) !important;
  box-shadow: 0 0 10px rgba(var(--cn-blue-rgb), 0.6) !important;
}

.atkp-imageslider + .atkp-thumbnails, .atkp-imageslider + ul {
  display: flex;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm);
  background: rgba(var(--box-rgb), 0.3);
  overflow-x: auto;
  scroll-behavior: smooth;
  border: 1px solid rgba(var(--cn-green-rgb), 0.2);
  clip-path: polygon(4px 0, calc(100% - 4px) 0, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0 calc(100% - 4px), 0 4px);
}
.atkp-imageslider + .atkp-thumbnails li, .atkp-imageslider + ul li {
  flex: 0 0 70px;
  height: 70px;
  border: 2px solid rgba(var(--cn-green-rgb), 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(var(--box-rgb), 0.5);
  clip-path: polygon(3px 0, calc(100% - 3px) 0, 100% 3px, 100% calc(100% - 3px), calc(100% - 3px) 100%, 3px 100%, 0 calc(100% - 3px), 0 3px);
}
.atkp-imageslider + .atkp-thumbnails li img, .atkp-imageslider + ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.atkp-imageslider + .atkp-thumbnails li:hover, .atkp-imageslider + ul li:hover {
  border-color: var(--cn-green);
  box-shadow: 0 0 12px rgba(var(--cn-green-rgb), 0.4);
}
.atkp-imageslider + .atkp-thumbnails li.active, .atkp-imageslider + .atkp-thumbnails li.is-active, .atkp-imageslider + ul li.active, .atkp-imageslider + ul li.is-active {
  border-color: var(--cn-green);
  box-shadow: 0 0 15px rgba(var(--cn-green-rgb), 0.6);
  animation: thumbnailGlow 3s ease-in-out infinite;
}
@media (min-width: 768px) {
  .atkp-imageslider + .atkp-thumbnails li, .atkp-imageslider + ul li {
    flex: 0 0 90px;
    height: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atkp-imageslider,
  .atkp-imageslider li {
    animation: none !important;
    transition: none !important;
  }
  .atkp-imageslider li img {
    filter: none !important;
  }
  .atkp-imageslider li:hover img {
    transform: none !important;
  }
}
@media (prefers-color-scheme: dark) {
  .atkp-container {
    background: rgba(var(--antra-rgb), 0.7);
  }
  .atkp-imageslider {
    background: rgba(var(--antra-rgb), 0.9);
  }
  .atkp-imageslider li {
    background: rgba(var(--antra-rgb), 0.95);
  }
}
