/* The carousel doesn't correctly honor data-bs-theme="light" when the encompassing theme is dark.
 * This fixes that
 * Reference: https://github.com/orgs/twbs/discussions/38789
 * Reference: https://stackoverflow.com/questions/46249541/change-arrow-colors-in-bootstraps-carousel
 */
/* Carousel Fix - start */

	[data-bs-theme="light"] .carousel .carousel-control-prev-icon,
	[data-bs-theme="light"] .carousel .carousel-control-next-icon,
	[data-bs-theme="light"].carousel .carousel-control-prev-icon,
	[data-bs-theme="light"].carousel .carousel-control-next-icon {
  		filter: none;
	}

	[data-bs-theme="light"] .carousel .carousel-indicators [data-bs-target],
	[data-bs-theme="light"].carousel .carousel-indicators [data-bs-target] {
		background-color: #fff;
	}

	[data-bs-theme="light"] .carousel .carousel-caption,
	[data-bs-theme="light"].carousel .carousel-caption {
		color: #fff;
	}

/* Carousel Fix - end */
