#ip3-awards .single__accordion input {
    height: 100%;
    width: 100%;
    opacity: 0;
}

.images-slider__image-wrapper  {
  max-height: 368px;
  max-width: 370px;
  min-width: 370px;
}
.images-slider .swiper-pagination.images-slider__dots {
position:relative;display: flex
;
    width: max-content;top: auto;
    bottom: auto;
}
.images-slider .swiper-pagination-bullet-active{
background: var(--primary-color-1) !important
}
.images-slider .swiper-pagination-bullet {
    height: 4px;
    width: 48px;
    
    border-radius: 2px !important;
    display: block;
    border-radius: 2px;
}

.images-slider {
overflow:hidden;
} 
.images-slider .images-slider__container {
  gap: 30px;
} 
.images-slider__nav button {
  border:none;
   gap: 12px; /* space between arrows and dots */
  padding: 0 16px; /* adjust this for left/right breathing room */
    box-sizing: border-box;
}
/* Nav wrapper */
.images-slider .images-slider__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  /* tokens/XS1 */
}

/* Prev/Next buttons */
.images-slider .images-slider__nav .images-slider__nav-btn {
  background: #fff;
  border-radius: 4px;
  /* adjust as per design */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.images-slider .images-slider__nav .images-slider__nav-btn .icon::before{
  font-size:24px;
  color:var(--primary-color-1);
}
.images-slider .images-slider__nav  .images-slider__nav-btn.images-slider__nav-btn--prev {
  transform: scaleX(-1);
}
.images-slider .images-slider__nav .images-slider__nav-btn:hover {
  background: #f5f5f5;
}
/* Dots container */
.images-slider .images-slider__nav .images-slider__dots .slick-dots {
  flex: 1;
  display: flex;
  justify-content: center;
  gap:  8px;
  margin: 0;
  padding: 0;
  list-style: none;
  
}

.images-slider .images-slider__nav .images-slider__dots .slick-dots:focus-visible {
outline: 2px dotted grey;  
}

.images-slider .images-slider__nav  .images-slider__nav-btn--prev:focus-visible,.images-slider .images-slider__nav  .images-slider__nav-btn--next:focus-visible  {
outline: 2px dotted grey;  
}


/* Rectangle dots */
.images-slider .images-slider__nav .images-slider__dots li {
  width: 48px;
  height: 4px;
  display: flex;
    justify-content: center;
    align-items: center;
}
.images-slider .images-slider__nav .images-slider__dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #ddd;
  border-radius: 2px;
  /* rectangle with rounded corners */
  border: none;
  cursor: pointer;
  text-indent: -9999px;
  /* hide the "dot" text */
}
/* Active dot */
.images-slider .images-slider__nav .images-slider__dots li.slick-active button {
  background: #006b5d;
  /* green active bar */
}


@media (max-width: 380px) {
  .images-slider__image-wrapper {
    max-height: max-content;
    max-width: fit-content;
    min-width: fit-content;
  }
}



/* Default (>=600px) styles are already defined above */

/* For small screens (below 600px) */
@media (max-width: 600px) {
.images-slider .swiper-pagination-bullet{
width:20px;
}
.images-slider .images-slider__nav {
gap:4px;
}
  /* Prev/Next buttons */
  .images-slider .images-slider__nav .images-slider__nav-btn {
    width: 20px;
    height: 20px;
    border-radius: 2px; /* slightly smaller */
  }

  .images-slider .images-slider__nav .images-slider__nav-btn .icon::before {
    font-size: 20px; /* smaller icon */
  }

  /* Dots */
  .images-slider .images-slider__nav .images-slider__dots li {
    width: 28px;
    height: 3px;
    
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .images-slider .images-slider__nav .images-slider__dots li button {
    border-radius: 1.5px;
  }
}

