.ai-scan-launcher {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:24px;
	background:#f3f4f6;
	border-radius:40px;
	padding:32px 40px;
	max-width:90vw;
	margin:40px auto;
}

.ai-scan-open {
	min-width: 250px;
}

.ai-scan-open:not(.custom-class) {
	background:#000;
	color:#fff;
	border: 1px solid #000;
	border-radius:999px;
	padding:14px 28px;
	font-weight:600;
	cursor:pointer;
	transition:all .2s ease-in;
}

.ai-scan-open:hover:not(.custom-class) {
	background:#fff;
	color: #000;
}

.ai-scan-modal {
	position:fixed;
	inset:0;
	z-index:9999999;
	display:none;
}

.ai-scan-modal.active {
	display: block;
}

.ai-scan-overlay {
	position:absolute;
	inset:0;
	background:rgba(0,0,0,.55);
	cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M2 2l12 12M14 2L2 14' stroke='white' stroke-width='3'/%3E%3Cpath d='M2 2l12 12M14 2L2 14' stroke='black' stroke-width='1'/%3E%3C/svg%3E") 8 8, auto;
}

.ai-scan-window {
	position: relative;
	background: #fff;
	border-radius: 32px;
	width: 90vw;
	max-height: 80vh;
	max-width: 1200px;
	margin: 5vh auto;
	padding: 36px;
	box-shadow: 0 30px 80px rgba(0,0,0,.3);
	overflow-y: auto;
	scrollbar-width: thin;
	clip-path: inset(0 round 32px);
	top: 50%;
	transform: translateY(-50%);
}

.ai-scan-close {
	position:absolute;
	top:16px;
	right:20px;
	background:none;
	border:none;
	font-size:30px;
	cursor:pointer;
}
@media (max-width: 991px) {
	.ai-scan-launcher {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
@media (min-width: 992px) {
	.ai-scan-launcher {
		max-width:900px;
		justify-content: center;
	}
}
@media (min-width: 1200px) {
	.ai-scan-launcher {
		max-width:1024px;
	}
}
@media (min-width: 1400px) {
	.ai-scan-launcher {
		max-width:1100px;
		justify-content: space-evenly;
	}
}
@media (min-width: 1600px) {
	.ai-scan-launcher {
		max-width:1280px;
	}
}
