.floating-button-area {
	padding: 8px 16px;
	background-color: rgba(255, 255, 255, 0.6);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	justify-content: center;
}

.floating-button-area .floating-button {
	min-width: 316px;
	height: 40px;
	min-height: 40px;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
	border-radius: 24px;
	padding: 10px 24px;
	background: #ff8200;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	transition:
		color 150ms ease-out,
		background-color 150ms ease-out;
	border: none;
}

.floating-button-area .floating-button:disabled,
.floating-button-area .floating-button.disabled {
	background-color: #fed7be;
}

.floating-button-area .floating-button:disabled span,
.floating-button-area .floating-button.disabled span {
	color: #fed7be;
}

.floating-button-area .floating-button:hover {
	background-color: #e77a1b;
}

.floating-button-area .floating-button span {
	color: #ff8200;
	font-size: 0.75rem;
	font-weight: inherit;
	line-height: 1.5;
	border-radius: 2px;
	padding: 1px 4px;
	background-color: #fff;
}

.floating-overlay {
	width: 482px;
	height: 300px;
	border-radius: 16px;
	padding: 40px;
	background-color: #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 150ms ease-out,
		visibility 150ms ease-out;
}

.floating-overlay.show {
	opacity: 1;
	visibility: visible;
	z-index: 1030;
}

.floating-overlay .floating-overlay-title {
	color: #000415;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
}

.floating-overlay .floating-overlay-text {
	color: #676767;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
	margin-top: 16px;
}

.floating-overlay .floating-overlay-buttons {
	margin-top: 32px;
	display: flex;
	gap: 16px;
}

.floating-overlay .buttons {
	width: calc(100% - 8px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.floating-overlay .buttons .micro-text {
	color: #676767;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

.floating-overlay .buttons .t-button-primary {
	width: 100%;
	height: 56px;
	min-height: 40px;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
	background: #ff8200;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition:
		color 150ms ease-out,
		background-color 150ms ease-out;
	border-radius: 32px;
	padding: 17.5px 24px;
	gap: 8px;
}

.floating-overlay .buttons .t-button-primary:disabled,
.floating-overlay .buttons .t-button-primary.disabled {
	background-color: #fed7be;
}

.floating-overlay .buttons .t-button-primary:disabled span,
.floating-overlay .buttons .t-button-primary.disabled span {
	color: #fed7be;
}

.floating-overlay .buttons .t-button-primary:hover {
	background-color: #e77a1b;
}

.floating-overlay .buttons .t-button-primary span {
	color: #ff8200;
	font-size: 0.875rem;
	font-weight: inherit;
	line-height: 1.2857142857;
	border-radius: 2px;
	padding: 1px 4px;
	background-color: #fff;
}

.floating-overlay .floating-close-button {
	width: 48px;
	height: 48px;
	border: none;
	background: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
}

.floating-overlay .floating-close-button span {
	width: 20px;
	height: 2px;
	border-radius: 1px;
	background-color: #979797;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}

.floating-overlay .floating-close-button span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.floating-overlay .floating-close-button span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}
