.dr1013floatingbuttons {

}

/* Floating Buttons Container */
.dr1013floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
}

.dr1013floatingbuttons .fab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 15px;
	background: linear-gradient(135deg, #007bff, #00d4ff);
	color: white;
	font-size: 24px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, background 0.4s ease;
	text-decoration: none;
}

.dr1013floatingbuttons .fab-btn:hover {
	transform: scale(1.1);
	background: linear-gradient(135deg, #0056b3, #00b2ff);
}

/* Specific Colors */
.dr1013floatingbuttons .fab-btn.call {
	background: linear-gradient(135deg, #28a745, #53d769);
}

.dr1013floatingbuttons .fab-btn.whatsapp-chat {
	background: linear-gradient(135deg, #25d366, #128c7e);
}

.dr1013floatingbuttons .fab-btn.whatsapp-share {
	background: linear-gradient(135deg, #0e8f61, #1ebea5);
}

.dr1013floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #004c99, #007bff);
}

@media ( max-width : 632px) {
	.dr1013floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
		border-radius: 12px;
	}
}
