.w-rcb-wrapper {
	background-color: #003b6e;
	background-image: url("./images/2026/fingerprint-white.png");
        background-position: center center;
	background-repeat: no-repeat;
	background-size: 16px;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	border-radius: 50%;
	border: 1px solid #003b6e;
	margin-top: 5px;
	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
	transition: background-color 0.2s ease;
}

.w-rcb-text {
	display: none;
	position: absolute;
	bottom: 72px;
	left: 110px;
	transform: translateX(-50%) translateY(4px);
	background-color: #003b6e;
	color: #fff;
	font-size: 14px;
	padding: 4px 8px;
	border-radius: 4px;
	white-space: nowrap;

	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 769px) {
    .w-rcb-wrapper {
	position: fixed;
	left: 20px;
	bottom: 20px;
	width: 70px;
	height: 70px;
	background-size: 34px 46px;
	z-index: 9999;
    }

    .w-rcb-wrapper:hover {
	background-color: #ffffff;
	background-image: url("./images/2026/fingerprint-black.png");
    }

    .w-rcb-wrapper:hover .w-rcb-text {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
    }



}
