.fab-wrapper {
	position: fixed;
	z-index: 9999;
}

.fab-bottom-right {
	bottom: 20px;
	right: 20px;
}

.fab-bottom-left {
	bottom: 20px;
	left: 20px;
}

.fab-top-right {
	top: 20px;
	right: 20px;
}

.fab-top-left {
	top: 20px;
	left: 20px;
}

.fab-button {
	width: 330px;
	height: 56px;
	border: 1px solid #007DA4;
	background: #0093B2;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	max-height: 56px !important;
	padding: 16px 24px;
	font-family: var(--custom-s--font--primary);
	font-weight: 600;
	border-radius: 27.5px;
	gap: 10px;
	display: flex;
	line-height: 20px;
	text-transform: capitalize;
	justify-content: space-evenly;
	align-items: center;

	img {
		height: 24px;
		width: auto;
	}
}

/* keep the full‐screen gray overlay */
.fab-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 10000;
}

.fab-modal-content {
	width: 330px;
	height: 80%;
	position: absolute;
	background: #0093B2;
	padding: 16px;
	overflow: auto;
	scrollbar-width: none;
	/* For Firefox */
	-ms-overflow-style: none;
	/* For Internet Explorer and Edge */
	border-radius: 27.5px;
	border: 1px solid #007DA4;

	.gform_wrapper {
		background: #fff;
		border-radius: 16px;
		color: #000;
		padding: 16px;
	}
}

.fab-modal-content::-webkit-scrollbar {
	display: none;
	/* For Chrome, Safari, and newer Edge */
}

.fab-modal-close {
	background: #007DA4;
	border: 1px solid #0093B2;
	cursor: pointer;
	width: 48px;
	height: 48px;
	border-radius: 30px;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;

	img {
		height: 24px;
		width: 15px;
		max-width: none;
	}
}

/* position above the button for each corner variant */
.fab-bottom-right .fab-modal-content {
	bottom: calc(20px + 56px);
	/* 20px wrapper offset + 56px button height */
	right: 20px;
}

.fab-bottom-left .fab-modal-content {
	bottom: calc(20px + 56px);
	left: 20px;
}

.fab-top-right .fab-modal-content {
	top: calc(20px + 56px);
	right: 20px;
}

.fab-top-left .fab-modal-content {
	top: calc(20px + 56px);
	left: 20px;
}

/* When the FAB modal is open, prevent the page behind from scrolling */
body.fab-modal-open {
	overflow: hidden;
	/* optionally lock width to avoid any layout shift:
     width: 100%; 
     position: relative;
  */
}