.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: 3px 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: center;
    align-items: center;
}

/* 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 {
	background: #fff;
	padding: 20px;
	max-width: 90%;
	max-height: 90%;
	overflow: auto;
	position: absolute;
	border-radius: 4px;
	width: 330px;
    height: 795px;
}

.fab-modal-close {
    position: absolute;
    top: 0px;
    right: 101%;
    background: #0093B2;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 27.5px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;

	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;
}
