.fade-out {
    opacity: 0;
    pointer-events: none;
}

.bg-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(161 34 68 / var(--tw-bg-opacity, 1));
}
.text-brand-accent{
	color: #a12244;
}

.animate-ping {
	animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite
}
.reveal-target {
	opacity: 0;
}

.reveal-content {
	animation: slideUpFade 0.3s ease forwards;
}

.reveal {
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.3s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0) scale(1);
}

@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes ping {
	75%,
	100% {
		transform: scale(2);
		opacity: 0
	}
}

@keyframes scan {
	0% {
		top: 0%;
	}
	50% {
		top: 100%;
	}
	100% {
		top: 0%;
	}
}
.animate-scan {
	animation: scan 2s linear infinite;
}
@keyframes toastIn {
	from {
		opacity: 0;
		transform: translateY(10px) scale(0.95);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes toastOut {
	from {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	to {
		opacity: 0;
		transform: translateY(10px) scale(0.95);
	}
}

.animate-toast-in {
	animation: toastIn 0.25s ease-out forwards;
}

.animate-toast-out {
	animation: toastOut 0.25s ease-in forwards;
}


@keyframes pulse-soft {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.animate-pulse-soft {
	animation: pulse-soft 2s infinite;
}

.dyn-img-link-wrapper-di-script {
	anchor-scope: all;
	display: contents;
	position: relative;
	z-index: 1;
}

.dyn-img-link-wrapper-di-script img {
	anchor-name: --photo;
	display: block;
	max-width: 100%;
}

.dyn-img-link-di-script {
	z-index: 999999;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 9999px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	color: white;
	height: clamp(13px, calc(max(anchor-size(width), anchor-size(height)) * 0.3), 21px);
	width: clamp(13px, calc(max(anchor-size(width), anchor-size(height)) * 0.3), 21px);
	padding: 4px;
	position: absolute;

	bottom: anchor(bottom);
	left: anchor(left);
	margin-left: 10px;
	margin-bottom: 10px;

	transition: background-color 0.2s ease-in-out;
}

.dyn-img-link-di-script:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.dyn-img-link-di-script span {
	font-size: 14px;
	vertical-align: top;
}

.dyn-img-attribution-button-di-script {
	z-index: 999999;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 9999px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	color: white;
	width: clamp(13px, calc(max(anchor-size(width), anchor-size(height)) * 0.3), 21px);
	height: clamp(13px, calc(max(anchor-size(width), anchor-size(height)) * 0.3), 21px);
	padding: 4px;

	position: absolute;
	position-anchor: --photo;
	top: anchor(top);
	right: anchor(right);
	margin-top: 10px;
	margin-right: 10px;

	transition: background-color 0.2s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dyn-img-attribution-button-di-script:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.dyn-img-attribution-button-di-script span {
	font-size: 14px;
	vertical-align: top;
}

.dyn-img-inline-attribution-di-script {
	z-index: 999999;
	font-size: 12px;
	padding: 4px;
	display: none;

	position: absolute;
	position-anchor: --photo;
	bottom: anchor(bottom);
	right: anchor(right);
	margin-bottom: 8px;
	margin-right: 8px;

	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: right;

	white-space: nowrap;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 9999px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	color: white;
}

/* Carrusel Loop Infinito */
@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-250px * 7));
	}
}


.slider-track {
	display: flex;
	width: calc(250px * 14);
	animation: scroll 40s linear infinite;
}

.slider-track:hover {
	animation-play-state: paused;
}

.grayscale-hover {
	filter: grayscale(100%);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.6;
}

.grayscale-hover:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}