	.share-menu{
		position:fixed;
		bottom:25px;
		right:25px;
		z-index:1050;
	}

	.share-options{
		display:flex;
		flex-direction:column;
		gap:10px;
		margin-bottom:10px;

		opacity:0;
		transform:translateY(20px);
		pointer-events:none;
		transition:.3s;
	}

	.share-options.show{
		opacity:1;
		transform:translateY(0);
		pointer-events:auto;
	}

	.share-menu .btn{
		width:55px;
		height:55px;
		display:flex;
		justify-content:center;
		align-items:center;
		font-size:22px;
	}

	#shareButton{
		width:65px;
		height:65px;
	}
