/* ==========================================================================
   Chat Quote for WooCommerce — Premium Frontend Widget
   WhatsApp Business-style design system
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
	--cq-teal: #027B23;
	--cq-teal-light: #027B23;
	--cq-green: #00D054;
	--cq-green-hover: #00D054;
	--cq-bg-chat: #efeae2;
	--cq-bg-chat-pattern: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23d4cfc6' opacity='.35'/%3E%3Ccircle cx='22' cy='22' r='1' fill='%23d4cfc6' opacity='.25'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='200' height='200' fill='url(%23p)'/%3E%3C/svg%3E");
	--cq-bubble-out: #dcf8c6;
	--cq-bubble-in: #ffffff;
	--cq-text: #111b21;
	--cq-text-secondary: #667781;
	--cq-border: #e9edef;
	--cq-surface: #f0f2f5;
	--cq-gold: linear-gradient(135deg, #f59e0b, #d97706);
	--cq-radius-bubble: 7.5px;
	--cq-radius-card: 16px;
	--cq-radius-input: 24px;
	--cq-radius-pill: 999px;
	--cq-shadow-panel: 0 12px 28px 0 rgba(0, 0, 0, .2), 0 2px 4px 0 rgba(0, 0, 0, .1);
	--cq-shadow-button: 0 4px 14px rgba(37, 211, 102, .4);
	--cq-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--cq-transition: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Widget Root ---------- */
#cqfw-widget-root {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 99999;
	font-family: var(--cq-font);
	font-size: 14px;
	color: var(--cq-text);
	line-height: 1.4;
}
/* ---------- Strong Reset to Prevent Theme Conflicts ---------- */
:where(#cqfw-widget-root),
:where(#cqfw-widget-root) *,
:where(#cqfw-widget-root) *::before,
:where(#cqfw-widget-root) *::after {
	box-sizing: border-box !important;
}

:where(#cqfw-widget-root) div,
:where(#cqfw-widget-root) span,
:where(#cqfw-widget-root) p,
:where(#cqfw-widget-root) a,
:where(#cqfw-widget-root) button,
:where(#cqfw-widget-root) input,
:where(#cqfw-widget-root) textarea,
:where(#cqfw-widget-root) form,
:where(#cqfw-widget-root) ul,
:where(#cqfw-widget-root) li {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	line-height: normal;
	font-family: var(--cq-font);
	color: inherit;
	box-shadow: none;
	border-radius: 0;
	text-decoration: none;
	list-style: none;
	outline: none;
}

:where(#cqfw-widget-root) img,
:where(#cqfw-widget-root) svg {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0;
	padding: 0;
}

/* ---------- Floating Button ---------- */
#cqfw-widget-root .cqfw-floating-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 75px !important;
	height: 75px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: var(--cq-radius-pill) !important;
	background: var(--cq-green) !important;
	color: #fff !important;
	box-shadow: var(--cq-shadow-button) !important;
	cursor: pointer;
	transition: all .25s var(--cq-transition);
	outline: none;
}

#cqfw-widget-root .cqfw-floating-button--icon-only {
	width: 60px;
	height: 60px;
	padding: 0;
}

#cqfw-widget-root .cqfw-floating-button:hover,
#cqfw-widget-root .cqfw-floating-button:focus-visible {
	background: var(--cq-green-hover) !important;
	transform: scale(1.06);
	box-shadow: 0 6px 20px rgba(37, 211, 102, .5) !important;
}

/* Pulse ring animation */
#cqfw-widget-root .cqfw-floating-button::before {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: inherit;
	border: 2px solid var(--cq-green);
	opacity: 0;
	animation: cq-pulse-ring 2.5s ease-out infinite;
	pointer-events: none;
}

@keyframes cq-pulse-ring {
	0% {
		transform: scale(.95);
		opacity: .6;
	}

	70% {
		transform: scale(1.15);
		opacity: 0;
	}

	100% {
		transform: scale(1.15);
		opacity: 0;
	}
}

/* Hide ring when chat is open */
#cqfw-widget-root .cqfw-floating-button[aria-expanded="true"]::before {
	animation: none;
	opacity: 0;
}

#cqfw-widget-root .cqfw-wa-svg-icon {
	width: 38px !important;
	height: 38px !important;
	flex-shrink: 0;
	fill: currentColor !important;
}

#cqfw-widget-root .cqfw-floating-label {
	font-weight: 500;
	font-size: 15px;
	white-space: nowrap;
}

/* ---------- Chat Panel ---------- */
#cqfw-widget-root .cqfw-chat-panel {
	position: absolute;
	right: 0;
	bottom: 80px;
	width: 380px;
	max-width: calc(100vw - 48px);
	max-height: min(85vh, 680px);
	display: flex;
	flex-direction: column;
	border-radius: var(--cq-radius-card);
	background: var(--cq-bg-chat);
	background-image: var(--cq-bg-chat-pattern);
	box-shadow: var(--cq-shadow-panel);
	overflow: hidden;
	opacity: 0;
	transform: translateY(16px) scale(.97);
	pointer-events: none;
	transition: opacity .2s ease, transform .35s var(--cq-transition);
}

#cqfw-widget-root .cqfw-chat-panel[aria-hidden="false"] {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

#cqfw-widget-root [hidden] {
	display: none !important;
}

/* ---------- Header ---------- */
#cqfw-widget-root .cqfw-chat-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 16px;
	background: var(--cq-teal) !important;
	color: #fff !important;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

#cqfw-widget-root .cqfw-header-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

#cqfw-widget-root .cqfw-header-avatar {
	position: relative;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

#cqfw-widget-root .cqfw-header-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

#cqfw-widget-root .cqfw-header-avatar svg {
	opacity: 1;
	color: #ffffff;
}

#cqfw-widget-root .cqfw-online-dot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 10px;
	height: 10px;
	background: var(--cq-green);
	border: 2px solid var(--cq-teal);
	border-radius: 50%;
	box-shadow: 0 0 6px rgba(37, 211, 102, .6);
}

#cqfw-widget-root .cqfw-header-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

#cqfw-widget-root .cqfw-header-text strong {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#cqfw-widget-root .cqfw-pro-badge {
	display: inline-block;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .5px;
	background: var(--cq-gold);
	color: #fff;
	padding: 2px 6px;
	border-radius: 4px;
	line-height: 1.3;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .15);
	box-shadow: 0 2px 6px rgba(245, 158, 11, .35);
	flex-shrink: 0;
}

#cqfw-widget-root .cqfw-header-text p {
	margin: 1px 0 0;
	font-size: 13px;
	color: rgba(255, 255, 255, .75);
	font-weight: 400;
}

#cqfw-widget-root .cqfw-chat-close {
	width: 32px !important;
	height: 32px !important;
	border-radius: 50% !important;
	border: 0 !important;
	background: transparent !important;
	color: rgba(255, 255, 255, .8) !important;
	cursor: pointer !important;
	font-size: 22px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s var(--cq-transition);
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	line-height: 1 !important;
}

#cqfw-widget-root .cqfw-chat-close:hover {
	background: rgba(255, 255, 255, .12) !important;
	color: #fff !important;
}

/* ---------- Messages Area ---------- */
#cqfw-widget-root .cqfw-chat-panel__messages {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 12px;
	flex: 1;
	min-height: 260px;
	max-height: 380px;
	overflow-y: auto;
	scroll-behavior: smooth;
}

#cqfw-widget-root .cqfw-chat-panel__messages::-webkit-scrollbar {
	width: 5px;
}

#cqfw-widget-root .cqfw-chat-panel__messages::-webkit-scrollbar-track {
	background: transparent;
}

#cqfw-widget-root .cqfw-chat-panel__messages::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, .12);
	border-radius: 10px;
}

/* ---------- Bubbles ---------- */
#cqfw-widget-root .cqfw-bubble {
	max-width: 85%;
	margin: 0 !important;
	padding: 6px 7px 8px 9px !important;
	border-radius: var(--cq-radius-bubble);
	font-size: 14.2px;
	line-height: 1.35;
	white-space: pre-wrap;
	word-break: break-word;
	box-shadow: 0 1px .5px rgba(11, 20, 26, .13);
	position: relative;
	animation: cq-msg-in .25s var(--cq-transition);
}

@keyframes cq-msg-in {
	from {
		opacity: 0;
		transform: translateY(6px) scale(.97);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

/* Received messages (admin/bot) — white, left */
#cqfw-widget-root .cqfw-bubble.is-bot {
	background: var(--cq-bubble-in);
	color: var(--cq-text);
	border-top-left-radius: 0;
	align-self: flex-start;
}

#cqfw-widget-root .cqfw-bubble.is-bot::before {
	content: '';
	position: absolute;
	top: 0;
	left: -8px;
	border-top: 0 solid transparent;
	border-right: 8px solid var(--cq-bubble-in);
	border-bottom: 13px solid transparent;
}

/* Sent messages (visitor) — green, right */
#cqfw-widget-root .cqfw-bubble.is-user {
	background: var(--cq-bubble-out);
	color: var(--cq-text);
	border-top-right-radius: 0;
	align-self: flex-end;
}

#cqfw-widget-root .cqfw-bubble.is-user::after {
	content: '';
	position: absolute;
	top: 0;
	right: -8px;
	border-top: 0 solid transparent;
	border-left: 8px solid var(--cq-bubble-out);
	border-bottom: 13px solid transparent;
}

/* Error messages */
#cqfw-widget-root .cqfw-bubble.is-error {
	background: #fff;
	color: #ef4444;
	align-self: flex-start;
	font-style: italic;
	font-size: 13px;
}

/* System / context messages */
#cqfw-widget-root .cqfw-bubble.is-context {
	align-self: center;
	background: rgba(225, 243, 251, .92);
	color: var(--cq-text);
	font-size: 12.5px;
	text-align: center;
	border-radius: var(--cq-radius-bubble);
	padding: 5px 12px 6px;
	box-shadow: 0 1px .5px rgba(11, 20, 26, .13);
	max-width: 90%;
}

/* Bubble timestamp */
#cqfw-widget-root .cqfw-bubble-time {
	font-size: 11px;
	color: rgba(0, 0, 0, .45);
	float: right;
	margin: 4px 0 -4px 12px;
	line-height: 15px;
}

/* ---------- Typing Indicator ---------- */
#cqfw-widget-root .cqfw-typing-indicator {
	align-self: flex-start;
	background: var(--cq-bubble-in);
	padding: 10px 16px;
	border-radius: var(--cq-radius-bubble);
	border-top-left-radius: 0;
	box-shadow: 0 1px .5px rgba(11, 20, 26, .13);
	display: none;
	gap: 4px;
	align-items: center;
}

#cqfw-widget-root .cqfw-typing-indicator::before {
	content: '';
	position: absolute;
	top: 0;
	left: -8px;
	border-top: 0 solid transparent;
	border-right: 8px solid var(--cq-bubble-in);
	border-bottom: 13px solid transparent;
}

#cqfw-widget-root .cqfw-typing-indicator.is-visible {
	display: inline-flex;
	position: relative;
}

#cqfw-widget-root .cqfw-typing-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #90a4ae;
	animation: cq-typing-bounce 1.4s ease-in-out infinite;
}

#cqfw-widget-root .cqfw-typing-dot:nth-child(2) {
	animation-delay: .2s;
}

#cqfw-widget-root .cqfw-typing-dot:nth-child(3) {
	animation-delay: .4s;
}

@keyframes cq-typing-bounce {

	0%,
	60%,
	100% {
		transform: translateY(0);
		opacity: .4;
	}

	30% {
		transform: translateY(-6px);
		opacity: 1;
	}
}

/* ---------- Product Context Card ---------- */
#cqfw-widget-root .cqfw-product-card {
	display: flex;
	gap: 12px;
	padding: 10px 12px;
	background: var(--cq-bubble-in);
	border-radius: 8px;
	box-shadow: 0 1px .5px rgba(11, 20, 26, .13);
	align-self: center;
	max-width: 92%;
	margin-bottom: 4px;
}

#cqfw-widget-root .cqfw-product-card__img {
	width: 52px;
	height: 52px;
	border-radius: 6px;
	object-fit: cover;
	background: var(--cq-surface);
	flex-shrink: 0;
}

#cqfw-widget-root .cqfw-product-card__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	min-width: 0;
}

#cqfw-widget-root .cqfw-product-card__name {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--cq-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#cqfw-widget-root .cqfw-product-card__price {
	font-size: 13px;
	color: var(--cq-green);
	font-weight: 600;
}

/* ---------- Form Container ---------- */
#cqfw-widget-root .cqfw-chat-form-container {
	padding: 8px 10px 12px;
	background: var(--cq-surface);
	flex-shrink: 0;
}

#cqfw-widget-root .cqfw-chat-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#cqfw-widget-root .cqfw-chat-reset {
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 0 4px 0 !important;
	color: var(--cq-text-secondary) !important;
	font-size: 13px !important;
	cursor: pointer !important;
	text-align: center !important;
	text-shadow: none !important;
	box-shadow: none !important;
	text-transform: none !important;
}

#cqfw-widget-root .cqfw-chat-reset:hover {
	color: var(--cq-teal) !important;
	text-decoration: underline !important;
}

/* Form inputs (name + phone) */
#cqfw-widget-root .cqfw-form-inputs {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

#cqfw-widget-root .cqfw-form-inputs input {
	width: 100%;
	margin: 0 !important;
	padding: 10px 14px !important;
	border: 1px solid var(--cq-border) !important;
	border-radius: 8px;
	background: #fff;
	color: var(--cq-text);
	font-size: 14px;
	font-family: var(--cq-font);
	transition: box-shadow .2s ease;
}

#cqfw-widget-root .cqfw-form-inputs input:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(7, 94, 84, .2);
}

#cqfw-widget-root .cqfw-form-inputs input::placeholder {
	color: #b0bec5;
}

/* Message input wrapper (WhatsApp-style) */
#cqfw-widget-root .cqfw-message-input-wrapper {
	display: flex;
	align-items: flex-end;
	background: #fff;
	border-radius: var(--cq-radius-input);
	padding: 4px 4px 4px 14px;
	transition: box-shadow .2s ease;
}

#cqfw-widget-root .cqfw-message-input-wrapper:focus-within {
	box-shadow: 0 0 0 2px rgba(7, 94, 84, .15);
}

#cqfw-widget-root .cqfw-message-input-wrapper textarea {
	flex: 1;
	border: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	padding: 8px 0 !important;
	resize: none;
	max-height: 100px;
	min-height: 20px;
	font-size: 15px;
	line-height: 1.35;
	color: var(--cq-text);
	font-family: var(--cq-font);
	overflow-y: auto;
}

#cqfw-widget-root .cqfw-message-input-wrapper textarea:focus {
	outline: none;
}

#cqfw-widget-root .cqfw-message-input-wrapper textarea::placeholder {
	color: #b0bec5;
}

/* Send button */
#cqfw-widget-root .cqfw-chat-send {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px !important;
	height: 40px !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: var(--cq-teal) !important;
	color: #fff !important;
	padding: 0 !important;
	margin: 0 0 0 6px !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: all .2s var(--cq-transition);
	flex-shrink: 0;
}

#cqfw-widget-root .cqfw-chat-send:hover {
	background: var(--cq-teal-light);
	transform: scale(1.06);
}

#cqfw-widget-root .cqfw-chat-send.is-loading {
	opacity: .6;
	cursor: wait;
}

#cqfw-widget-root .cqfw-chat-send svg {
	width: 20px !important;
	height: 20px !important;
	fill: currentColor !important;
}

/* ---------- Options Panel ---------- */
#cqfw-widget-root .cqfw-chat-panel__options {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}

#cqfw-widget-root .cqfw-option {
	padding: 10px 16px !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: var(--cq-text) !important;
	border: 1px solid var(--cq-border) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	font-family: var(--cq-font) !important;
	text-align: center !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	transition: all .2s ease !important;
	text-decoration: none !important;
	line-height: normal !important;
}

#cqfw-widget-root .cqfw-option:hover {
	background: #f5f6f6 !important;
	color: var(--cq-text) !important;
}

#cqfw-widget-root .cqfw-option--whatsapp {
	background: var(--cq-green) !important;
	color: #fff !important;
	border: 0 !important;
	font-weight: 600 !important;
}

#cqfw-widget-root .cqfw-option--whatsapp:hover {
	background: var(--cq-green-hover) !important;
	color: #fff !important;
}

/* ---------- Success Animation ---------- */
#cqfw-widget-root .cqfw-success-check {
	align-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 24px;
	animation: cq-msg-in .4s var(--cq-transition);
}

#cqfw-widget-root .cqfw-success-check__circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--cq-green);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: cq-check-pop .5s var(--cq-transition);
}

@keyframes cq-check-pop {
	0% {
		transform: scale(0);
	}

	60% {
		transform: scale(1.2);
	}

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

#cqfw-widget-root .cqfw-success-check__circle svg {
	width: 28px;
	height: 28px;
	color: #fff;
}

#cqfw-widget-root .cqfw-success-check__text {
	font-size: 14px;
	color: var(--cq-text-secondary);
	text-align: center;
}

/* ---------- Quick Replies ---------- */
#cqfw-widget-root .cqfw-quick-replies {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 12px 8px;
}

#cqfw-widget-root .cqfw-quick-reply {
	padding: 6px 14px;
	border-radius: var(--cq-radius-pill);
	border: 1px solid var(--cq-teal);
	background: transparent;
	color: var(--cq-teal);
	font-size: 13px;
	font-family: var(--cq-font);
	cursor: pointer;
	transition: all .2s ease;
	white-space: nowrap;
}

#cqfw-widget-root .cqfw-quick-reply:hover {
	background: var(--cq-teal);
	color: #fff;
}

/* ---------- Screen Reader ---------- */
#cqfw-widget-root .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- WooCommerce Product/Shop/Cart Buttons ---------- */
.cqfw-product-cta,
.cqfw-shop-cta,
.cqfw-cart-cta {
	margin: 1.25rem 0;

	display: flex;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}

a.cqfw-inline-btn,
button.cqfw-inline-btn,
.woocommerce a.cqfw-inline-btn,
.woocommerce button.cqfw-inline-btn,
.woocommerce-page a.cqfw-inline-btn,
.woocommerce-page button.cqfw-inline-btn,
.woocommerce form.cart a.cqfw-inline-btn,
.woocommerce form.cart button.cqfw-inline-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	padding: 10px 20px !important;
	border-radius: 6px !important;
	background-color: var(--cq-green) !important;
	background-image: none !important;
	color: #ffffff !important;
	border: none !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	line-height: 1.5 !important;
	box-shadow: 0 4px 14px rgba(37, 211, 102, .4) !important;
	transition: all .25s var(--cq-transition) !important;
	-webkit-text-stroke: 0 !important;
	text-shadow: none !important;
	outline: none !important;
	margin: 0 !important;
	letter-spacing: normal !important;
}

a.cqfw-inline-btn:hover,
button.cqfw-inline-btn:hover,
.woocommerce a.cqfw-inline-btn:hover,
.woocommerce form.cart a.cqfw-inline-btn:hover {
	background-color: var(--cq-green-hover) !important;
	color: #ffffff !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(37, 211, 102, .5) !important;
	border: none !important;
	text-decoration: none !important;
}

.cqfw-inline-btn .cqfw-button-icon {
	width: 20px;
	height: 20px;
}

#cqfw-widget-root .cqfw-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.cqfw-button-svg-icon {
	width: 25px;
	height: 25px;
	fill: currentColor;
	flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
	#cqfw-widget-root {
		right: 12px;
		left: 12px;
		bottom: 12px;
	}

	#cqfw-widget-root .cqfw-floating-button--icon-only {
		width: 56px;
		height: 56px;
		margin-left: auto;
	}

	#cqfw-widget-root .cqfw-chat-panel {
		right: 0;
		left: 0;
		width: auto;
		max-width: none;
		bottom: 72px;
		max-height: 75vh;
		border-radius: 14px;
	}
}