.lt-social-sidebar {
	    position: fixed;
	    right: 0;
	    top: 75%;
	    transform: translateY(-50%);
	    z-index: 9999;
	    display: flex;
	    flex-direction: column;
	    gap: 0;
		padding-top: 10px;
		padding-bottom: 10px;
		border-top-left-radius: 10px;
	  	border-bottom-left-radius: 10px;
		background-color: #1c4f9c;
	}
	.lt-social-sidebar a {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    width: 48px;
	    height: 48px;
	    background-color: #1c4f9c;
	    color: #ffffff;
	    text-decoration: none;
	    transition: background-color 0.2s ease;
	}
	.lt-social-sidebar a:hover {
	    background-color: #163d7a;
	}
	.lt-social-sidebar a svg {
	    width: 20px;
	    height: 20px;
	    fill: #ffffff;
	}
	@media (max-width: 768px) {
	    .lt-social-sidebar { display: none; }
	}
