/**
**Theme Slider Styles
** This file contains the styles for all slider components unless revered to another file.
*/
.wp-block-uagb-image-gallery ul.slick-dots {
    top: unset !important;
    position: absolute !important;
    display: flex;
    gap: var(--gap-s);
    justify-content: center;

}
.wp-block-uagb-image-gallery ul.slick-dots li {
    position: relative !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: var(--ast-global-color-0);
    border-radius: 100%;
    width: 12px;
    height: 12px;
}

.wp-block-uagb-image-gallery ul.slick-dots li.slick-active {
    background-color: var(--ast-global-color-5);
}



.wp-block-uagb-image-gallery ul.slick-dots li button::before {
    display: none;
}

.wp-block-uagb-image-gallery .slick-slide,
.wp-block-uagb-image-gallery .slick-slide img{
  height: 100% !important;
  aspect-ratio: 633/818;
  object-fit: cover;

}