.carousel-caption {
	padding: 64px;
	z-index: 1;
}

.carousel-caption::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: linear-gradient(to top, 
    rgba(0, 0, 0, .7) 10%,
    rgba(0, 0, 0, 0) 100%
	);
	z-index: -1;
}

.carousel-control-prev,
.carousel-control-next {
	border: 1px solid var(--white);
	background-color: transparent;
	width: min-content;
	border-radius: 500px;

	transition: all .2s ease;
	width: 50px;
	height: 50px;
	z-index: 2;

	transition: all 0.2s ease;
}

.carousel-control-prev::before,
.carousel-control-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 12H5M5 12L12 19M5 12L12 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 12H5M5 12L12 19M5 12L12 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--white);
    transition: background-color 0.2s ease;
}

/* Next button - rotate the arrow 180 degrees */
.carousel-control-next::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Hover states */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--white);
}

.carousel-control-prev:hover::before,
.carousel-control-next:hover::before {
    background-color: var(--text-dark);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 12H5M5 12L12 19M5 12L12 5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 12H5M5 12L12 19M5 12L12 5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


.success-icon {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.success-icon i {
	line-height: 1;
}