/**
 * Toast nakon uspješnog slanja kontakt obrasca.
 */
.cmrok-contact-toast {
	position: fixed;
	bottom: 1.5rem;
	left: 50%;
	z-index: 100;
	max-width: min(92vw, 28rem);
	padding: 1rem 1.35rem 1rem 1.25rem;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	color: #ffffff;
	background: linear-gradient(145deg, #15803d 0%, #166534 100%);
	border-radius: 0.75rem;
	box-shadow:
		0 22px 44px -12px rgba(22, 101, 52, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.12) inset;
	transform: translate3d(-50%, 120%, 0);
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease;
}

.cmrok-contact-toast__msg {
	flex: 1 1 auto;
	min-width: 0;
}

.cmrok-contact-toast.is-visible {
	transform: translate3d(-50%, 0, 0);
	opacity: 1;
	pointer-events: auto;
}

.cmrok-contact-toast__close {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 0.375rem;
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}

.cmrok-contact-toast__close:hover {
	background: rgba(255, 255, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
	.cmrok-contact-toast {
		transition: none;
		transform: translate3d(-50%, 0, 0);
	}
}
