.aqt-cep-widget,
.aqt-cep-widget * {
	box-sizing: border-box;
}

.aqt-cep-widget {
	--aqt-navy: #00345d;
	--aqt-blue: #006fbd;
	--aqt-cyan: #21c4dc;
	--aqt-ink: #0b2942;
	--aqt-muted: #5d7184;
	--aqt-border: #d8e4ec;
	--aqt-success: #09893c;
	font-family: inherit;
	position: relative;
	display: inline-flex;
	max-width: 100%;
}

.aqt-cep-trigger {
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 10px;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 50px;
	max-width: 230px;
	padding: 7px 9px;
	text-align: left;
	transition: background-color .18s ease, box-shadow .18s ease;
}

.aqt-cep-trigger:hover,
.aqt-cep-trigger:focus-visible,
.aqt-cep-trigger[aria-expanded="true"] {
	background: rgba(33, 196, 220, .12);
}

.aqt-cep-trigger:focus-visible {
	box-shadow: 0 0 0 3px rgba(33, 196, 220, .35);
	outline: none;
}

.aqt-cep-trigger__icon {
	align-items: center;
	color: var(--aqt-cyan);
	display: inline-flex;
	flex: 0 0 auto;
	height: 25px;
	justify-content: center;
	width: 25px;
}

.aqt-cep-trigger__icon svg,
.aqt-cep-panel__pin svg {
	fill: none;
	height: 100%;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 100%;
}

.aqt-cep-trigger__copy {
	display: grid;
	line-height: 1.14;
	min-width: 0;
}

.aqt-cep-trigger__copy small {
	font-size: 11px;
	font-weight: 500;
	opacity: .78;
}

.aqt-cep-trigger__copy strong {
	font-size: 13px;
	font-weight: 750;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.aqt-cep-trigger__chevron {
	fill: none;
	flex: 0 0 auto;
	height: 15px;
	margin-left: 2px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform .18s ease;
	width: 15px;
}

.aqt-cep-trigger[aria-expanded="true"] .aqt-cep-trigger__chevron {
	transform: rotate(180deg);
}

.aqt-cep-panel {
	background: #fff;
	border: 1px solid var(--aqt-border);
	border-radius: 16px;
	box-shadow: 0 22px 60px rgba(1, 36, 65, .22), 0 4px 14px rgba(1, 36, 65, .1);
	color: var(--aqt-ink);
	display: none;
	left: var(--aqt-panel-left, 16px);
	padding: 22px;
	position: fixed;
	top: var(--aqt-panel-top, 90px);
	width: min(380px, calc(100vw - 24px));
	z-index: 999999;
}

.aqt-cep-panel::before {
	background: #fff;
	border-left: 1px solid var(--aqt-border);
	border-top: 1px solid var(--aqt-border);
	content: "";
	height: 16px;
	left: var(--aqt-pointer-left, 28px);
	position: absolute;
	top: -9px;
	transform: rotate(45deg);
	width: 16px;
}

.aqt-cep-panel.is-open {
	animation: aqtCepEnter .2s ease-out both;
	display: block;
}

@keyframes aqtCepEnter {
	from { opacity: 0; transform: translateY(-8px) scale(.985); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.aqt-cep-panel__close {
	align-items: center;
	appearance: none;
	background: #eef5f8;
	border: 0;
	border-radius: 50%;
	color: var(--aqt-ink);
	cursor: pointer;
	display: inline-flex;
	font-size: 22px;
	height: 32px;
	justify-content: center;
	line-height: 1;
	padding: 0 0 2px;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 32px;
}

.aqt-cep-panel__close:hover,
.aqt-cep-panel__close:focus-visible {
	background: #dcecf3;
	outline: none;
}

.aqt-cep-panel__heading {
	display: flex;
	gap: 12px;
	padding-right: 30px;
}

.aqt-cep-panel__pin {
	align-items: center;
	background: #e9fafd;
	border-radius: 12px;
	color: var(--aqt-blue);
	display: flex;
	flex: 0 0 auto;
	height: 42px;
	justify-content: center;
	padding: 9px;
	width: 42px;
}

.aqt-cep-panel h2 {
	color: var(--aqt-ink);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.2;
	margin: 0 0 5px;
}

.aqt-cep-panel p {
	color: var(--aqt-muted);
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.aqt-cep-form {
	margin-top: 18px;
}

.aqt-cep-form label {
	color: var(--aqt-ink);
	display: block;
	font-size: 12px;
	font-weight: 750;
	margin: 0 0 7px;
}

.aqt-cep-form__row {
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.aqt-cep-form input {
	appearance: none;
	background: #fff;
	border: 1px solid #bdceda;
	border-radius: 10px;
	box-shadow: none;
	color: var(--aqt-ink);
	font: inherit;
	font-size: 16px;
	height: 46px;
	letter-spacing: .02em;
	min-width: 0;
	outline: none;
	padding: 0 13px;
	width: 100%;
}

.aqt-cep-form input:focus {
	border-color: var(--aqt-cyan);
	box-shadow: 0 0 0 3px rgba(33, 196, 220, .18);
}

.aqt-cep-form input[aria-invalid="true"] {
	border-color: #c82a35;
	box-shadow: 0 0 0 3px rgba(200, 42, 53, .1);
}

.aqt-cep-form button[type="submit"] {
	align-items: center;
	appearance: none;
	background: linear-gradient(135deg, var(--aqt-blue), #008fd0);
	border: 0;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(0, 111, 189, .18);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 13px;
	font-weight: 750;
	height: 46px;
	justify-content: center;
	min-width: 94px;
	padding: 0 16px;
}

.aqt-cep-form button[type="submit"]:hover,
.aqt-cep-form button[type="submit"]:focus-visible {
	filter: brightness(1.06);
	outline: none;
	transform: translateY(-1px);
}

.aqt-cep-form button[type="submit"]:disabled {
	cursor: wait;
	filter: grayscale(.25);
	opacity: .72;
	transform: none;
}

.aqt-cep-feedback {
	border-radius: 9px;
	display: none;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 10px;
	padding: 9px 11px;
}

.aqt-cep-panel__find {
	align-items: center;
	color: var(--aqt-muted) !important;
	display: inline-flex;
	font-size: 11px;
	gap: 5px;
	margin-top: 9px;
	text-decoration: underline !important;
	text-underline-offset: 2px;
}

.aqt-cep-panel__find:hover,
.aqt-cep-panel__find:focus-visible {
	color: var(--aqt-blue) !important;
}

.aqt-cep-panel__find svg {
	fill: none;
	height: 14px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	width: 14px;
}

.aqt-cep-feedback.is-visible {
	display: block;
}

.aqt-cep-feedback.is-success {
	background: #eaf8ef;
	color: #08662e;
}

.aqt-cep-feedback.is-error {
	background: #fff0f1;
	color: #9f1e29;
}

.aqt-cep-rates {
	display: grid;
	gap: 7px;
	margin-top: 10px;
}

.aqt-cep-rate {
	align-items: center;
	background: #f5f9fb;
	border: 1px solid #e1ebf0;
	border-radius: 10px;
	display: flex;
	font-size: 12px;
	gap: 10px;
	justify-content: space-between;
	line-height: 1.3;
	padding: 9px 11px;
}

.aqt-cep-rate strong {
	color: var(--aqt-blue);
	flex: 0 0 auto;
	font-size: 13px;
}

.aqt-cep-rates__more {
	color: var(--aqt-muted);
	font-size: 11px;
	margin: 0;
	text-align: right;
}

.aqt-cep-panel .aqt-cep-panel__privacy {
	align-items: center;
	border-top: 1px solid #e8eff3;
	display: flex;
	font-size: 10px;
	gap: 6px;
	margin-top: 15px;
	padding-top: 12px;
}

.aqt-cep-panel__privacy svg {
	fill: none;
	flex: 0 0 auto;
	height: 15px;
	stroke: var(--aqt-success);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
	width: 15px;
}

@media (max-width: 767px) {
	.aqt-cep-trigger {
		max-width: 190px;
		min-height: 44px;
		padding: 5px 7px;
	}

	.aqt-cep-trigger__copy small {
		font-size: 10px;
	}

	.aqt-cep-trigger__copy strong {
		font-size: 12px;
	}

	.aqt-cep-panel {
		border-radius: 16px 16px 0 0;
		bottom: 0;
		left: 0 !important;
		max-height: min(620px, calc(100vh - 24px));
		overflow-y: auto;
		padding: 20px 18px max(18px, env(safe-area-inset-bottom));
		top: auto !important;
		width: 100%;
	}

	.aqt-cep-panel::before { display: none; }

	.aqt-cep-panel.is-open {
		animation-name: aqtCepMobileEnter;
	}

	@keyframes aqtCepMobileEnter {
		from { opacity: 0; transform: translateY(24px); }
		to { opacity: 1; transform: translateY(0); }
	}
}

@media (prefers-reduced-motion: reduce) {
	.aqt-cep-panel.is-open,
	.aqt-cep-trigger__chevron {
		animation: none;
		transition: none;
	}
}
