/* Floating Buttons Widget Styles */
.contact-list {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.contact-list a {
	background: #ffffff0a;
	backdrop-filter: blur(10px);
	margin-bottom: 10px;
	border-radius: 25px 0 0 25px;
	width: 80px;
	height: 35px;
	text-align: center;
	line-height: 30;
	margin-top: 0;
	transition: transform 0.3s ease-in-out;
	line-height: 40px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: space-around;
	border: 1px solid #fff9;
	border-right: none;
	cursor: pointer;
	text-decoration: none;
}

.contact-list a:hover {
	transform: translateX(10px);
}

.contact-list a svg {
	display: block;
	flex-shrink: 0;
}

.whatsapp-custom-icon {
	font-size: 21px;
}

/* Responsive adjustments - Desktop/Mobile visibility */
@media (max-width: 767px) {
	.contact-list a.desktop {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.contact-list a.mobile {
		display: none !important;
	}
}

/* Mobile responsive design from responsive-min.css */
@media only screen and (max-width: 768px) {
	.contact-list {
		flex-direction: row-reverse;
		align-content: center;
		justify-content: center;
		width: 100%;
		bottom: 20px;
		top: auto;
		transform: none;
		right: auto;
		left: 0;
	}
	
	.contact-list a {
		border: 1px solid #000;
		background-color: #FFF3;
		height: 40px;
		width: 20%;
		border: 1px solid #FFF9;
		border-radius: 4px;
		margin: 0 10px;
		margin-bottom: 0;
		border-right: 1px solid #FFF9;
	}
	
	.contact-list a:hover {
		transform: translateX(0);
	}
}
